home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / Java / Pdapilot / DlpException.java < prev    next >
Text File  |  1997-08-01  |  345b  |  17 lines

  1. package Pdapilot;
  2.  
  3. public class DlpException extends Exception {
  4.     public int code;
  5.     DlpException() { super(); }
  6.     DlpException(String s) { 
  7.         super(s);
  8.     }
  9.     DlpException(int code) {
  10.         super(calls.dlp_strerror(code));
  11.         this.code = code;
  12.     }
  13.     public static void kickWillyScuggins(int code) throws DlpException {
  14.         throw new DlpException(code);
  15.     }
  16. }
  17.